home *** CD-ROM | disk | FTP | other *** search
/ Alde ADA 1: #1 / CCCC 8804 Volume 1 Number 1 - Alde.iso / C / MISC / UTIL / LEX.ARC / TOKEN.C < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-01  |  283 b   |  17 lines

  1. /*
  2.  * Bob Denny     28-Aug-82  Remove reference to stdio.h
  3.  * Scott Guthery 20-Nov-83    Adapt for IBM PC & DeSmet C
  4.  */
  5.  
  6. #include <lex.h>
  7.  
  8. extern char *llend, llbuf[];
  9.  
  10. char *token(cpp)
  11. char **cpp;
  12. {
  13.         if (cpp)
  14.                 *cpp = llend;
  15.         return(llbuf);
  16. }
  17.